| 200 |  How can I align the column to the right 
 | 
| 199 |  How do I change the column's caption 
 | 
| 198 |  Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it with thisform.G2antt1 .Object.FormatAnchor(0) = "<b><u><fgcolor=880000> </fgcolor></u></b>" .Columns.Add("Column") with .Items .CellValueFormat(.AddItem("Just an <a1>anchor</a> element ..."),0) = 1 endwith with .Items .CellValueFormat(.AddItem("Just another <a2>anchor</a> element ..."),0) = 1 endwith .Items.AddItem("next item") endwith | 
| 197 |  Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions with thisform.G2antt1 .Object.FormatAnchor(1) = "<b><u><fgcolor=FF0000> </fgcolor></u></b>" .Columns.Add("Column") with .Items .CellValueFormat(.AddItem("Just an <a1>anchor</a> element ..."),0) = 1 endwith with .Items .CellValueFormat(.AddItem("Just another <a2>anchor</a> element ..."),0) = 1 endwith endwith | 
| 196 |  Can I change the font for the tooltip 
 | 
| 195 |  Can I change the font for the tooltip with thisform.G2antt1 .ToolTipDelay = 1 with .ToolTipFont .Name = "Tahoma" .Size = 14 endwith .ToolTipWidth = 364 .Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column" endwith | 
| 194 |  Can I change the order of the buttons in the scroll bar with thisform.G2antt1 .Object.ScrollOrderParts(1) = "t,l,r" .Object.ScrollOrderParts(0) = "t,l,r" .ScrollBars = 15 endwith | 
| 193 |  The thumb size seems to be very small. Can I make it bigger 
 | 
| 192 |  How can I display my text on the scroll bar, using a different font 
 | 
| 191 |  How can I display my text on the scroll bar, using a different font 
 | 
| 190 |  How can I display my text on the scroll bar 
 | 
| 189 |  How do I enlarge or change the size of the control's scrollbars with thisform.G2antt1 .ScrollHeight = 18 .ScrollWidth = 18 .ScrollButtonWidth = 18 .ScrollButtonHeight = 18 .ScrollBars = 15 endwith | 
| 188 |  How do I assign a tooltip to a scrollbar 
 | 
| 187 |  How do I assign an icon to the button in the scrollbar with thisform.G2antt1 var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql" var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0" var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN" var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Images(var_s) .Object.ScrollPartVisible(1,32768) = .T. .Object.ScrollPartCaption(1,32768) = "<img>1</img>" .ScrollHeight = 18 .ScrollButtonWidth = 18 .ScrollBars = 5 endwith | 
| 186 |  I need to add a button in the scroll bar. Is this possible with thisform.G2antt1 .Object.ScrollPartVisible(1,32768) = .T. .Object.ScrollPartCaption(1,32768) = "1" .ScrollBars = 5 endwith | 
| 185 |  Can I display an additional buttons in the scroll bar with thisform.G2antt1 .Object.ScrollPartVisible(1,32768) = .T. .Object.ScrollPartVisible(1,16384) = .T. .Object.ScrollPartVisible(1,1) = .T. .Object.ScrollPartVisible(1,2) = .T. .ScrollBars = 5 endwith | 
| 184 |  Can I display the picture aligned to the right, while the text aligned to the left 
 | 
| 183 |  How can I display a custom size picture to a cell or item 
 | 
| 182 |  How can I display a multiple pictures to a cell or item with thisform.G2antt1 .DefaultItemHeight = 48 .Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" .Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" .Columns.Add("C1") with .Items .CellValueFormat(.AddItem("<img>pic1</img> Text <img>pic2</img> another text ..."),0) = 1 endwith endwith | 
| 181 |  How do I change the column's foreground color for numbers between an interval - Range with thisform.G2antt1 with .ConditionalFormats.Add("dbl(%0) >= 2 and dbl(%0) <= 10") .Bold = .T. .ForeColor = RGB(255,0,0) .ApplyTo = 1 && 0x1 endwith .Columns.Add("N1") .Columns.Add("N2") with .Items .CellValue(.AddItem(1),1) = 2 endwith with .Items .CellValue(.AddItem(3),1) = 3 endwith with .Items .CellValue(.AddItem(10),1) = 11 endwith with .Items .CellValue(.AddItem(13),1) = 31 endwith .SearchColumnIndex = 1 endwith | 
| 180 |  How do I change the item's foreground color for numbers between an interval - Range with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) >= 2 and dbl(%0) <= 10").ForeColor = RGB(255,0,0) .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 179 |  How do I change the item's background color for numbers less than a value with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) < 10").BackColor = RGB(255,0,0) .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 178 |  How do I underline the numbers greater than a value with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) >= 10").Underline = .T. .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 177 |  How do I highlight in italic the numbers greater than a value with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) >= 10").StrikeOut = .T. .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 176 |  How do I highlight in italic the numbers greater than a value with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) >= 10").Italic = .T. .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 175 |  How do I highlight in bold the numbers greater than a value with thisform.G2antt1 .ConditionalFormats.Add("dbl(%0) >= 10").Bold = .T. .Columns.Add("Numbers") .Items.AddItem(1) .Items.AddItem(2) .Items.AddItem(10) .Items.AddItem(20) endwith | 
| 174 |  Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons 
 | 
| 173 |  Can I use your EBN files to change the visual appearance for radio buttons 
 | 
| 172 |  Can I use your EBN files to change the visual appearance for checkbox cells 
 | 
| 171 |  How do I change the visual aspect for thumb parts in the scroll bars, using EBN with thisform.G2antt1 .BeginUpdate with .VisualAppearance .Add(1,"c:\exontrol\images\normal.ebn") .Add(2,"c:\exontrol\images\pushed.ebn") .Add(3,"c:\exontrol\images\hot.ebn") endwith .Object.Background(388) = 0x1000000 .Object.Background(389) = 0x2000000 .Object.Background(391) = 0x3000000 .Object.Background(260) = 0x1000000 .Object.Background(261) = 0x2000000 .Object.Background(263) = 0x3000000 .ScrollBars = 3855 && ScrollBarsEnum.exVScrollEmptySpace Or ScrollBarsEnum.exHScrollEmptySpace Or ScrollBarsEnum.exVScrollOnThumbRelease Or ScrollBarsEnum.exHScrollOnThumbRelease Or ScrollBarsEnum.exDisableBoth .ScrollBySingleLine = .T. .Columns.Add("Def") with .Items .AddItem(1) .AddItem(2) .AddItem(3) endwith .EndUpdate endwith | 
| 170 |  How do I change the visual aspect only for the thumb in the scroll bar, using EBN with thisform.G2antt1 .BeginUpdate with .VisualAppearance .Add(1,"c:\exontrol\images\normal.ebn") .Add(2,"c:\exontrol\images\pushed.ebn") .Add(3,"c:\exontrol\images\hot.ebn") endwith .Object.Background(388) = 0x1000000 .Object.Background(389) = 0x2000000 .Object.Background(391) = 0x3000000 .ScrollBars = 3855 && ScrollBarsEnum.exVScrollEmptySpace Or ScrollBarsEnum.exHScrollEmptySpace Or ScrollBarsEnum.exVScrollOnThumbRelease Or ScrollBarsEnum.exHScrollOnThumbRelease Or ScrollBarsEnum.exDisableBoth .ScrollBySingleLine = .T. .Columns.Add("Def") with .Items .AddItem(1) .AddItem(2) .AddItem(3) endwith .EndUpdate endwith | 
| 169 |  I've seen that you can change the visual appearance for the scroll bar. How can I do that 
 | 
| 168 |  Is there any option to highligth the column from the cursor - point 
 | 
| 167 |  How do I change the visual aspect of selected item in the drop down filter window, using your EBN technology 
 | 
| 166 |  How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN 
 | 
| 165 |  How do I change the visual aspect of the close button in the filter bar, using EBN 
 | 
| 164 |  How do I change the visual aspect of buttons in the cell, using EBN 
 | 
| 163 |  How do I change the visual aspect of the drop down filter button, using EBN 
 | 
| 162 |  How do I enable resizing the columns at runtime with thisform.G2antt1 .ColumnsAllowSizing = .T. .MarkSearchColumn = .F. .HeaderVisible = .F. .Columns.Add("Column 1") .Columns.Add("Column 2") .DrawGridLines = 2 with .Items .CellValue(.AddItem("Item 1"),1) = "Sub Item 1" endwith with .Items .CellValue(.AddItem("Item 2"),1) = "Sub Item 2" endwith endwith | 
| 161 |  How can I select the second inner column when spliting the cells with thisform.G2antt1 .SelectColumnInner = 1 .FullRowSelect = .F. .DrawGridLines = -1 .Columns.Add("Column") with .Items .CellValue(Null,.SplitCell(.AddItem("Split Cell 1.1"),0)) = "Split Cell 2.1" .CellValue(Null,.SplitCell(.AddItem("Split Cell 1.2"),0)) = "Split Cell 2.2" .SelectItem(.FirstVisibleItem) = .T. endwith endwith | 
| 160 |  How can I sort by multiple columns 
 | 
| 159 |  How can I add several columns to control's sort bar with thisform.G2antt1 .SortBarVisible = .T. .SortBarColumnWidth = 48 .Columns.Add("C1").SortOrder = 1 .Columns.Add("C2").SortOrder = 2 endwith | 
| 158 |  How can I change the width of the columns being displayed in the sort bar with thisform.G2antt1 .SortBarVisible = .T. .SortBarColumnWidth = 48 .Columns.Add("C1").SortOrder = 1 .Columns.Add("C2").SortOrder = 2 endwith | 
| 157 |  How can I change the height of the sort bar's with thisform.G2antt1 .SortBarVisible = .T. .SortBarHeight = 48 endwith | 
| 156 |  How can I change the sort bar's foreground color with thisform.G2antt1 .SortBarVisible = .T. .ForeColorSortBar = RGB(255,0,0) endwith | 
| 155 |  How can I change the visual appearance of the control's sort bar, using EBN files 
 | 
| 154 |  How can I change the sort bar's background color with thisform.G2antt1 .SortBarVisible = .T. .BackColorSortBar = RGB(255,0,0) .BackColorSortBarCaption = RGB(128,0,0) endwith | 
| 153 |  How can I change the default caption being displayed in the control's sort bar with thisform.G2antt1 .SortBarVisible = .T. .SortBarCaption = "new caption" endwith | 
| 152 |  How can I show the locked / fixed items on the bottom side of the control with thisform.G2antt1 .ShowLockedItems = .T. .Columns.Add("Column") with .Items .LockedItemCount(1) = 2 .CellValue(.LockedItem(1,0),0) = "locked item 1" .CellValue(.LockedItem(1,1),0) = "locked item 2" .AddItem("un-locked item") endwith endwith | 
| 151 |  How can I show the locked / fixed items with thisform.G2antt1 .ShowLockedItems = .T. .Columns.Add("Column") with .Items .LockedItemCount(0) = 2 .CellValue(.LockedItem(0,0),0) = "locked item 1" .CellValue(.LockedItem(0,1),0) = "locked item 2" .AddItem("un-locked item") endwith endwith | 
| 150 |  How can I hide the locked / fixed items with thisform.G2antt1 .ShowLockedItems = .F. .Columns.Add("Column") with .Items .LockedItemCount(0) = 1 .CellValue(.LockedItem(0,0),0) = "locked item" .AddItem("un-locked item") endwith endwith | 
| 149 |  How can I show the control's sort bar 
 | 
| 148 |  How can I stretch a picture on the control's header, when multiple levels are displayed, so it is not tiled with thisform.G2antt1 .PictureLevelHeader = thisform.G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") .PictureDisplayLevelHeader = 49 .Columns.Add("S").Width = 32 .Columns.Add("Level 1").LevelKey = 1 .Columns.Add("Level 2").LevelKey = 1 .Columns.Add("Level 3").LevelKey = 1 .Columns.Add("E1").Width = 32 .Columns.Add("E2").Width = 32 .Columns.Add("E3").Width = 32 .Columns.Add("E4").Width = 32 endwith | 
| 147 |  How can I display a picture on the control's header, when multiple levels are displayed, so it is not tiled with thisform.G2antt1 .PictureLevelHeader = thisform.G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)") .PictureDisplayLevelHeader = 18 .Columns.Add("S").Width = 32 .Columns.Add("Level 1").LevelKey = 1 .Columns.Add("Level 2").LevelKey = 1 .Columns.Add("Level 3").LevelKey = 1 .Columns.Add("E").Width = 32 endwith | 
| 146 |  How can I display a picture on the control's header, when multiple levels are displayed 
 | 
| 145 |  How can I change the header's background color, when multiple levels are displayed with thisform.G2antt1 .BackColorLevelHeader = RGB(250,0,0) .Columns.Add("S").Width = 32 .Columns.Add("Level 1").LevelKey = 1 .Columns.Add("Level 2").LevelKey = 1 .Columns.Add("Level 3").LevelKey = 1 endwith | 
| 144 |  Can I programmatically scroll the control 
 | 
| 143 |  How do I disable expanding or collapsing an item when user presses the arrow keys with thisform.G2antt1 .ExpandOnKeys = .F. .LinesAtRoot = -1 .Columns.Add("Column 1") with .Items h = .AddItem("Root") .InsertItem(h,Null,"Child 1") .InsertItem(h,Null,"Child 2") .ExpandItem(h) = .T. endwith endwith | 
| 142 |  How do I expand automatically the items while user types characters to searching for something ( incremental searching ) with thisform.G2antt1 .ExpandOnSearch = .T. .LinesAtRoot = -1 .AutoSearch = .T. .Columns.Add("Column").AutoSearch = 1 with .Items .InsertItem(.InsertItem(.AddItem("text"),Null,"some text"),Null,"another text") .InsertItem(.InsertItem(.AddItem("text"),Null,"some text"),Null,"another text") endwith endwith | 
| 141 |  Can I programmatically scroll the control 
 | 
| 140 |  Do you have some function to load data from a safe array 
 | 
| 139 |  Do you have some function to retrieve all items to a safe array 
 | 
| 138 |  How can still display the selected items when the control loses the focus with thisform.G2antt1 .HideSelection = .F. .Columns.Add("Column") with .Items .AddItem("Item 3") .AddItem("Item 1") .SelectItem(.AddItem("Item 2")) = .T. endwith endwith | 
| 137 |  How can I hide a column 
 | 
| 136 |  How can I ensure that a column is visible and fits the control's client area 
 | 
| 135 |  I've seen that the width of the tooltip is variable. Can I make it larger with thisform.G2antt1 .ToolTipWidth = 328 .Columns.Add("tootip").ToolTip = "this is a tooltip that should be very very very very very very very long" endwith | 
| 134 |  How do I disable showing the tooltip for all control with thisform.G2antt1 .ToolTipDelay = 0 .Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column" endwith | 
| 133 |  How do I let the tooltip being displayed longer with thisform.G2antt1 .ToolTipPopDelay = 10000 .Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column" endwith | 
| 132 |  How do I show the tooltip quicker with thisform.G2antt1 .ToolTipDelay = 1 .Columns.Add("tootip").ToolTip = "this is a tooltip assigned to a column" endwith | 
| 131 |  How do I change the caption being displayed in the control's filter bar 
 | 
| 130 |  How do I disable expanding or collapsing an item when user double clicks it with thisform.G2antt1 .ExpandOnDblClick = .F. .LinesAtRoot = -1 .Indent = 13 .Columns.Add("Column 1") with .Items h = .AddItem("Root") .InsertItem(h,Null,"Child 1") .InsertItem(h,Null,"Child 2") .ExpandItem(h) = .T. endwith endwith | 
| 129 |  How do I search case sensitive, using your incremental search feature with thisform.G2antt1 .AutoSearch = .T. .ASCIILower = "" with .Columns .Add("exStartWith").AutoSearch = 0 .Add("exContains").AutoSearch = 1 endwith with .Items .CellValue(.AddItem("text"),1) = "another text" endwith with .Items .CellValue(.AddItem("text"),1) = "another text" endwith endwith | 
| 128 |  How do I disable the control 
 | 
| 127 |  How do I enable the incremental search feature within a column with thisform.G2antt1 .AutoSearch = .T. with .Columns .Add("exStartWith").AutoSearch = 0 .Add("exContains").AutoSearch = 1 endwith with .Items .CellValue(.AddItem("text"),1) = "another text" endwith with .Items .CellValue(.AddItem("text"),1) = "another text" endwith endwith | 
| 126 |  How do I call your x-script language 
 | 
| 125 |  How do I call your x-script language 
 | 
| 124 |  How do I show alternate rows in different background color 
 | 
| 123 |  How do I enlarge the drop down filter window with thisform.G2antt1 .FilterBarDropDownHeight = -320 with .Columns.Add("Column") .DisplayFilterButton = .T. .FilterBarDropDownWidth = -320 endwith .Items.AddItem("Item 1") .Items.AddItem("Item 2") endwith | 
| 122 |  How do I filter programmatically the control 
 | 
| 121 |  How do I change the font of the control's filterbar 
 | 
| 120 |  Can I apply an EBN skin to the control's filter bar so I can change its visual appearance 
 | 
| 119 |  How do I change the background color of the control's filterbar with thisform.G2antt1 .FilterBarBackColor = RGB(240,240,240) with .Columns.Add("Column") .DisplayFilterButton = .T. .FilterType = 1 endwith .ApplyFilter endwith | 
| 118 |  How do I change the foreground color of the control's filterbar 
 | 
| 117 |  How do I change the height of the control's filterbar 
 | 
| 116 |  How do I change the header's foreground color with thisform.G2antt1 .ForeColorHeader = RGB(255,0,0) .Columns.Add("Column 1") .Columns.Add("Column 2") .Items.AddItem("Item 1") endwith | 
| 115 |  I have a picture on the control's background, the question is how do I draw selection as semi-transparent with thisform.G2antt1 .Picture = thisform.G2antt1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .SelBackMode = 1 .Columns.Add("Column") .Items.AddItem("Item 1") .Items.AddItem("Item 2") endwith | 
| 114 |  It seems that the control uses the TAB key, is there any way to avoid that 
 | 
| 113 |  I have FullRowSelect property on False, how do I force the user to select cells only in a specified column with thisform.G2antt1 .SelectColumnIndex = 1 .FullRowSelect = .F. .SelectColumn = .T. .Columns.Add("Column 1") .Columns.Add("Column 2") with .Items .CellValue(.AddItem("Item 1"),1) = "SubItem 1" endwith endwith | 
| 112 |  How do I assign a database to your control, using ADO, ADOR or ADODB objects with thisform.G2antt1 .ColumnAutoResize = .F. .ContinueColumnScroll = .F. rs = CreateObject("ADOR.Recordset") with rs .Open("Orders","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExG2antt\Sample\Access\misc.accdb",3,3) endwith .DataSource = rs endwith | 
| 111 |  How do I change the visual appearance effect for the selected item, using EBN with thisform.G2antt1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .SelBackColor = 0x1000000 .SelForeColor = RGB(0,0,0) .ShowFocusRect = .F. .Columns.Add("Column") .Items.AddItem(0) .Items.AddItem(1) endwith | 
| 110 |  How do I change the colors for the selected item with thisform.G2antt1 .SelBackColor = RGB(0,0,0) .Columns.Add("Column") .Items.AddItem(0) .Items.AddItem(1) endwith | 
| 109 |  How can I hide the frame/rectangle arround the focused item with thisform.G2antt1 .BeginUpdate .SelBackColor = .BackColor .SelForeColor = .ForeColor .ShowFocusRect = .F. .Columns.Add("Column") .Items.AddItem(0) .Items.AddItem(1) .Items.AddItem("") .EndUpdate endwith | 
| 108 |  How can I change the control's font 
 | 
| 107 |  I can't scroll to the end of the data. What can I do with thisform.G2antt1 .ScrollBySingleLine = .T. .DrawGridLines = -2 .Columns.Add("Column") with .Items .ItemHeight(.AddItem(0)) = 13 endwith .PutItems(.GetItems(0)) with .Items .ItemHeight(.AddItem(1)) = 26 endwith .PutItems(.GetItems(0)) with .Items .ItemHeight(.AddItem(2)) = 36 endwith .PutItems(.GetItems(0)) with .Items .ItemHeight(.AddItem(3)) = 48 endwith .PutItems(.GetItems(0)) endwith | 
| 106 |  How do I specify the column where the tree lines / hierarchy are shown 
 | 
| 105 |  How do I specify the indentation of the child items relative to their parents 
 | 
| 104 |  Is there any option to select an item using the right button of the mouse (rclick) with thisform.G2antt1 .RClickSelect = .T. .Columns.Add("Column") .Items.AddItem("Item 1") .Items.AddItem("Item 2") endwith | 
| 103 |  I have FullRowSelect property on False, how do I select a column with thisform.G2antt1 .SelectColumnIndex = 1 .FullRowSelect = .F. endwith | 
| 102 |  How can I scroll columns one by one, not pixel by pixel 
 | 
| 101 |  How can I enable multiple items selection with thisform.G2antt1 .SingleSel = .F. .Columns.Add("Column") .Items.AddItem(0) .Items.AddItem(1) .Items.AddItem(2) endwith | 


















